home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 42 / Amiga Format AFCD42 (Issue 126, Aug 1999).iso / -serious- / comms / other / amigancp_20 / docs / history < prev    next >
Text File  |  1999-05-17  |  14KB  |  416 lines

  1. This document describes changes in the modules of the AmigaNCP package.
  2.  
  3. =====================================================================
  4.  
  5. AmigaNCP-FileServer 1.6
  6. -----------------------
  7. - reversed "HideIcons" to be "ShowIcons", hiding .info and .backdrop
  8.   being the new default setting.  
  9.  
  10. AmigaNCP-FileServer 1.7
  11. -----------------------
  12. - fixed to a misunderstanding on RF_OPEN with P_FCREATE / P_FREPLACE:
  13.   The path of the file wasn't created if it didn't exists. This caused
  14.   problems with Backup option of the S3a which relies on this behavior
  15.   and doesn't makedir() it's file's path.
  16.  
  17. AmigaNCP-FileServer 1.8
  18. -----------------------
  19. - changed to use "amigancp.library"
  20. - fixed a bug in write handling where the last two bytes of a full
  21.   sized packet got trashed. Since internal data structures got
  22.   overwritten, this may have caused undefined behaviour or even
  23.   total system crashes.
  24. - now correctly converts filenames from IBM to ISO charset.
  25. - RF_SFSTAT (setting the file flags) didn't convert the name and
  26.   therefore always failed with E_FILE_NXIST. This is the cause of
  27.   error of the "File doesn't exists" requester after copying a file
  28.   from the S3's system screen.
  29.  
  30. AmigaNCP-FileServer 1.9
  31. -----------------------
  32. - the finfo call now correctly converts the filename to ibm charset.
  33.  
  34. AmigaNCP-FileServer 1.10
  35. ------------------------
  36. - updated to use amigancp.library 3.x
  37. - now calls the pool functions embedded in amigancp.library to
  38.   avoid hassle on 2.x systems.
  39.  
  40. AmigaNCP-FileServer 1.11
  41. ------------------------
  42. - fixed a bug in workbench startup: the original lock
  43.   wasn't restored after CDing to wa->wa_Lock
  44. - updated to use amigancp.library 4.x
  45. - major speedup in all charset conversion operations due to new
  46.   table conversion functions.
  47. - fixed stupid bug: Used Read()/Write() instead of FRead()/FWrite(),
  48.   thus rendering buffering completely useless if not used in
  49.   conversation mode.
  50. - updated catalog file to version 2.0.
  51. - now checks CTRL^C after ReadArgs() to allow early quit.
  52.  
  53. AmigaNCP-FileServer 1.12
  54. ------------------------
  55. - recompiled using SAS/C 6.55
  56. - cleaned up memory usage; avoid wasting due to mismatched pool
  57.   size rounding and fixed a pool erraneously allocated with a
  58.   puddle size of 4, thus creating a new puddle for every
  59.   allocation.
  60.  
  61. AmigaNCP-FileServer 1.14
  62. ------------------------
  63. - recompiled using SAS/C 6.55
  64. - fixed some text
  65. - insists on using V5 of "amigancp.library"
  66.  
  67. AmigaNCP-FileServer 1.15
  68. ------------------------
  69. - insists on using V6 of "amigancp.library"
  70. - several small cleanups and fixes
  71.  
  72. AmigaNCP-FileServer 1.16
  73. ------------------------
  74. - recompiled with SAS/C 6.57 for potential compiler code introduced
  75.   bugs.
  76.  
  77. AmigaNCP-FileServer 2.0
  78. -----------------------
  79. - insists on using V9 of "amigancp.library"
  80. - will now warn if amigancp library is in S5 mode, and refuse
  81.   to run
  82.  
  83. ==========================================================================
  84.  
  85.  
  86. AmigaNCP-FileSystem 1.5
  87. -----------------------
  88. - fixed a bug in the file name conversion where the extension was cutted
  89.   at the first dot, not at the last. Both will fail, but this way
  90.   you are protected against side effects like "delete Agenda.Agn.info"
  91.   deleting "Agenda.agn" instead of simple failure.
  92. - fixed a bug in ACTION_DELETE where invalid file names (e.g. containing
  93.   multiple extensions) to confusingly cause ERROR_DIRECTORY_NOT_EMPTY.
  94.   Now returns ERROR_OBJECT_NOT_FOUND.
  95.  
  96. AmigaNCP-FileSystem 1.6
  97. -----------------------
  98. - changed to use "amigancp.library"
  99. - locks now contain a non-zero value in fl_Key. This should fix several
  100.   problems with programs making tricky assumptions about the internal
  101.   lock structure. <sigh>
  102. - now correctly translates non-ascii characters in filenames from
  103.   ISO to IBM charset.
  104. - now attempts to recreate the NCP channel if the remote NCP
  105.   changed (e.g. was killed and started again).
  106. - fixed a race condition when Examine()ing the root dir: the
  107.   filename was actually filled in after the packet was replied.
  108. - fixed a bug which caused random memory trashing if the first
  109.   entry in a directory scan was volume file.
  110. - returned TRUE instead of DOSTRUE thoroughly.
  111. - Examine()/ExNext() now returns the same value in
  112.   fib_DirEntryType and the (undocumented) fib_EntryType,
  113.   as the standard file system does. Should fix several buggy
  114.   directory utilities ;-)
  115. - ACTION_DELETE always returned ERROR_DIRECTORY_NOT_EMPTY on
  116.   an error no matter what really happened.
  117. - now returns ERROR_DEVICE_NOT_MOUNTED if the NCP link fails
  118.   for some reason.
  119. - ACTION_EXAMINE on the root directory now correctly
  120.   returns the volume name.
  121. - Locking "/" (or any combined form) didn't get higher than the
  122.   pseudo subdirectories in NCP:.
  123.  
  124. AmigaNCP-FileSystem 1.7
  125. -----------------------
  126. - ACTION_EXAMINE/ACTION_EXNEXT now correctly convert the
  127.   filename charset from IBM to ISO.
  128.  
  129. AmigaNCP-FileSystem 1.8
  130. -----------------------
  131. - updated to use amigancp.library 3.x
  132. - now calls the pool functions embedded in amigancp.library to
  133.   avoid hassle on 2.x systems.
  134.  
  135. AmigaNCP-FileSystem 1.9
  136. -----------------------
  137. - fixed a bug in initdirlist() which could cause misaligned word
  138.   access if the P_FINFOs returned by the Psion weren't word aligned.
  139.   Caused a 80000003 guru on 68000 machines.
  140.  
  141. AmigaNCP-FileSystem 1.10
  142. ------------------------
  143. - fixed a bug in ACTION_WRITE: remote errors (e.g. Disk Full)
  144.   weren't correctly reported to the caller, instead the write
  145.   simply aborted.
  146.  
  147. AmigaNCP-FileSystem 2.0
  148. -----------------------
  149. - now stores icon files in a special AmigaDOS directory hierarchy
  150.   to allow snapshoting and permanent option setting. The icon path
  151.   defaults to PROGDIR:Icons, but can be specified by the ICONDIR
  152.   tooltype or shell argument. Release versions are shipped with
  153.   a default icon tree.
  154. - corrected inefficent pool size for the ACTION_EXNEXT cache.
  155. - the "Missing Server" requester now has an additional option "Run Server
  156.   and Retry".
  157. - on CTRL^C now reports number of open locks/files if quit is currently
  158.   not possible.
  159. - on CTRL^F now dumps a debug list of locks in use.
  160. - now fakes fib_NumBlocks on Examine() to enforce compatibility
  161.   with even more buggy directory utilities.
  162. - did some internal code cleanup.
  163. - updated to use amigancp.library 4.x
  164. - fixed a bug in workbench startup: the original lock
  165.   wasn't restored after CDing to wa->wa_Lock (yes, this was
  166.   exactly the same bug as in the FileServer ;-)
  167. - major speedup in all charset conversion operations due to new
  168.   table conversion functions.
  169. - updated catalog file to version 2.0.
  170. - now checks CTRL^C after ReadArgs() to allow early quit.
  171.  
  172. AmigaNCP-FileSystem 2.1
  173. -----------------------
  174. - recompiled using SAS/C 6.55
  175. - ACTION_SETPROTECT & ACTION_SETDATE on one of the fake device
  176.   subdirectories return ERROR_INVALID_OBJECT_NAME which was
  177.   correctly generated by the Psion file server. Now since this
  178.   caused problems with several backup utilities, these operations
  179.   are now implemented as NO-OPs and silently report "OK".
  180. - fixed ACTION_COPY_DIR(NULL) to return NULL instead of causing
  181.   several enforcer hits and undefined behavior.
  182. - now returns approximated memory usage on CTRL^F debug dump.
  183. - reduced lock and fib pool sizes to reduce overall memory usage
  184.   overhead.
  185.  
  186. [AmigaNCP-FileSystem 2.2 - 2.4 internal only]
  187.  
  188. AmigaNCP-FileSystem 2.5
  189. -----------------------
  190. - insists on using V6 of "amigancp.library"
  191. - several small cleanups and fixes
  192.  
  193. AmigaNCP-FileSystem 2.6
  194. -----------------------
  195. - recompiled with SAS/C 6.57 for potential compiler code introduced
  196.   bugs.
  197.  
  198. AmigaNCP-FileSystem 3.1
  199. -----------------------
  200. - insists on using V9 of "amigancp.library"
  201. - added EPOC32 protocol support
  202.  
  203. AmigaNCP-FileSystem 3.3
  204. -----------------------
  205. - fixed long directory reads in EPOC32 mode
  206.  
  207. AmigaNCP-FileSystem 3.4
  208. -----------------------
  209. - fixed parsing of short file names in EPOC32 mode
  210.  
  211. ==========================================================================
  212.  
  213.  
  214. ncp.lib 1.1
  215. -----------
  216. - modified constructor to open "amigancp.library"
  217. - fixed error requester to correctly show up the tasks name on
  218.   workbench startup.
  219.  
  220. ncp.lib 1.2
  221. -----------
  222. - updated to open V3 of "amigancp.library"
  223.  
  224. ncp.lib 1.3